home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / nameless.swf / scripts / DefineSprite_60_healthbox / frame_1 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  145 b   |  9 lines

  1. onEnterFrame = function()
  2. {
  3.    if(_root.cm.hitTest(_X,_Y - 15,true))
  4.    {
  5.       _root.health += 15;
  6.       removeMovieClip(this);
  7.    }
  8. };
  9.